home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Disc to the Future 2
/
Disc to the Future Part II Programmer's Reference (Wayzata Technology)(6013)(1992).bin
/
MAC
/
THINKC
/
4_0
/
LIFE_SIM
/
VERSION_
/
HANDLEUP.C
< prev
next >
Wrap
Text File
|
1992-03-12
|
575b
|
33 lines
/* Cell Proj 1.0 */
#include "MacProto.h"
#include "Cell_Proto.h"
#include "Cell_Definitions.h"
#include "Cell_Variables.h"
HandleUpdateEvt()
{
if ( ( WindowPtr ) gTheEvent.message == gCellWindow )
{
BeginUpdate( ( WindowPtr ) gTheEvent.message );
SetPort( gCellWindow );
EndUpdate( ( WindowPtr ) gTheEvent.message );
}
}
HandleActivateEvt()
{
if ( (WindowPtr)gTheEvent.message == gCellWindow )
{
if (( gTheEvent.modifiers & activeFlag ) != 0 )
{
SetPort( gCellWindow );
SelectWindow( gCellWindow );
}
else
{
SetPort( gCellWindow );
}
}
}